home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / tex / dvivga9.zip / CLRROW.H < prev    next >
Text File  |  1988-05-30  |  511b  |  17 lines

  1. /* -*-C-*- clrrow.h */
  2. /*-->clrrow*/
  3. /**********************************************************************/
  4. /****************************** clrrow ********************************/
  5. /**********************************************************************/
  6.  
  7. void
  8. clrrow()    /* clear the current character image row, img_row[] */
  9. {
  10.     register UNSIGN32 *p;
  11.     register UNSIGN16 nwords;
  12.  
  13.     nwords = img_words;
  14.     for (p = &img_row[nwords-1]; nwords; (--p,--nwords))
  15.         *p = (UNSIGN32)0L;
  16. }
  17.